home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19950528-19950726 / 000420_news@columbia.edu_Mon Jul 24 23:58:34 1995.msg < prev    next >
Internet Message Format  |  1995-07-31  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21220
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 24 Jul 1995 19:58:38 -0400
  3. Received: by apakabar.cc.columbia.edu id AA04521
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 24 Jul 1995 19:58:36 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: how do I specify a port number to kermit?
  9. Date: 24 Jul 1995 23:58:34 GMT
  10. Organization: Columbia University
  11. Lines: 24
  12. Message-Id: <3v1c3a$4d7@apakabar.cc.columbia.edu>
  13. References: <DC8M08.K32@hillae.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <DC8M08.K32@hillae.com>, Tan Bronson <tan@hillae.com> wrote:
  18. >I'd like to connect to a given port of a terminal server.
  19. >I see how to specific the address (set host xxx),
  20. >but how do I specify the port-number?
  21. >
  22. >I see hooks in ckcnet.c, but can't figure out where the
  23. >value is set from the command line.
  24. >
  25. There are easier ways to figure out how to issue a command than
  26. reading the source code!  Here are just two:
  27.  
  28.  1. Look in the manual.
  29.  
  30.  2. Type "help".  This would have led you to "help set host".
  31.  
  32.  2. Use the "?" feature of the command parser:
  33.  
  34.     C-Kermit>set host ? IP host name or number
  35.     C-Kermit>set host foo.bar.baz.edu ? Port number
  36.     C-Kermit>set host foo.bar.baz.edu 2000
  37.  
  38. Hey, the syntax is just like Telnet :-)
  39.  
  40. - Frank